home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / apps / cmapDoctor / cmapdoctor / DrcmapControl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  3.3 KB  |  106 lines

  1. /*
  2.  * Copyright (C) 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. //////////////////////////////////////////////////////////////
  18. //
  19. // Header file for DrcmapControl
  20. //
  21. //    This file is generated by BuildXcessory. DO NOT MODIFY. 
  22. //    USE SUBCLASSING INSTEAD
  23. //
  24. //    This class is a user interface "component", as described
  25. //    in "Object-Oriented Programming with C++ and OSF/Motif",
  26. //    by Douglas Young, Prentice Hall, 1992. ISBN 0-13-630252-1
  27. //
  28. //    If you directly modify this file, you may lose your 
  29. //    changes if it is  regenerated by the builder again.
  30. //
  31. //////////////////////////////////////////////////////////////
  32. #ifndef DRCMAPCONTROL_H
  33. #define DRCMAPCONTROL_H
  34. #include <Vk/VkComponent.h>
  35. #include "DrawwinDerived.h"
  36.  
  37.  
  38. // Externally defined classes referenced by this class ;
  39.  
  40. class DrawwinDerived;
  41. class DrcmapControlDerived;
  42.  
  43. class DrcmapControl : public VkComponent
  44.  
  45.   public:
  46.  
  47.     DrcmapControl(const char *, Widget);
  48.     ~DrcmapControl();
  49.     const char *  className();
  50.  
  51.   protected: 
  52.  
  53.     // Classes created by this class
  54.  
  55.     DrawwinDerived *_drawwin;
  56.  
  57.     // Widgets created by this class
  58.  
  59.     Widget  _drcmapControl;
  60.     Widget  _frame;
  61.     Widget  _list1;
  62.     Widget  _listHeader;
  63.     Widget  _nextCmap1;
  64.     Widget  _pickList1;
  65.     Widget  _prevCmap1;
  66.     Widget  _rgbDisp;
  67.     Widget  _rootList1;
  68.     Widget  _scrolledWindow;
  69.  
  70.  
  71.     // These virtual functions are called from the private callbacks (above)
  72.     // Intended to be overriden in derived classes to define actions
  73.  
  74.     virtual void nextCmap ( Widget, XtPointer );
  75.     virtual void normalBtnl ( Widget, XtPointer );
  76.     virtual void normalBtnr ( Widget, XtPointer );
  77.     virtual void pickCmap ( Widget, XtPointer );
  78.     virtual void pickList ( Widget, XtPointer );
  79.     virtual void prevCmap ( Widget, XtPointer );
  80.     virtual void pushedBtnl ( Widget, XtPointer );
  81.     virtual void pushedBtnr ( Widget, XtPointer );
  82.     virtual void rootList ( Widget, XtPointer );
  83.  
  84.   private: 
  85.  
  86.     // Array of default resources
  87.  
  88.     static String      _defaultDrcmapControlResources[];
  89.  
  90.     // Callbacks to interface with Motif
  91.  
  92.     static void nextCmapCallback (Widget, XtPointer, XtPointer);
  93.     static void normalBtnlCallback (Widget, XtPointer, XtPointer);
  94.     static void normalBtnrCallback (Widget, XtPointer, XtPointer);
  95.     static void pickCmapCallback (Widget, XtPointer, XtPointer);
  96.     static void pickListCallback (Widget, XtPointer, XtPointer);
  97.     static void prevCmapCallback (Widget, XtPointer, XtPointer);
  98.     static void pushedBtnlCallback (Widget, XtPointer, XtPointer);
  99.     static void pushedBtnrCallback (Widget, XtPointer, XtPointer);
  100.     static void rootListCallback (Widget, XtPointer, XtPointer);
  101.  
  102. };
  103. #endif
  104.  
  105.